home *** CD-ROM | disk | FTP | other *** search
/ Manchester United on CD / Manchester United on CD.iso / subscribe.dxr / Internal_49_clear on beginsprite.ls < prev    next >
Encoding:
Text File  |  2000-08-30  |  364 b   |  15 lines

  1. property psp_mysprite
  2.  
  3. on beginSprite me
  4.   psp_mysprite = sprite(me.spriteNum)
  5.   if the controlDown = 0 then
  6.     if psp_mysprite.member.text <> EMPTY then
  7.       psp_mysprite.member.text = EMPTY
  8.     end if
  9.   end if
  10. end
  11.  
  12. on getPropertyDescriptionList me
  13.   return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
  14. end
  15.